home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Pier Shareware 9
/
The Pier Shareware #9 (Pier Exchange).ISO
/
039
/
bdlg32.exe
/
STATDLG.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-11-23
|
1KB
|
41 lines
// statdlg.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CStatDlg dialog
class CStatDlg : public CDialog
{
// Construction
public:
CStatDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CStatDlg)
enum { IDD = IDD_STATIC };
CStatic m_staticFrame; // Used with DDX/DDV to access static frame
//}}AFX_DATA
// Attributes
protected:
CDC m_dcMem; // Compatible Memory DC for dialog
CBitmap m_bmpCircle; // Bitmap to display
HBITMAP m_hBmpOld; // Handle of old bitmap to save
BITMAP m_bmInfo; // Bitmap Information structure
CPoint m_pt; // Position for upper left corner of bitmap
CSize m_size; // Size (width and height) of bitmap
// Implementation
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(CStatDlg)
afx_msg void OnDestroy();
afx_msg void OnPaint();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};